Basically, you place the dll in the plugins-user directory, the ini in the
editor\keywords directory, and read these instructions. :) 

No initializations required, just call displayMessage.

It has to return a value, otherwise your program will not compile.

Example:
x=displayMessage("Hello World!","Message",iconInfo(),btnOk())

Even though no value is meant to be returned, something must be returned.

This will be fixed in a future update.

Enjoy.

COMMANDS:
Icons:
iconExclamation()   - Same as iconWarning()
iconWarning()       - Display the warning (caution) icon in the messagebox
iconError()         - Display the error (red x) icon in the messagebox
iconQuestion()      - Display the question icon in the messagebox
iconInfo()          - Display the information icon in the messagebox
iconStop()          - I think this is the same as iconError()

Buttons:
btnOk()                 - Display a simple OK button in the messagebox
btnAbortRetryIgnore()   - Display Abort, Retry, & Ignore in the messagebox
btnHelp()               - Display the Help button in the messagebox
btnOkCancel()           - Display OK and Cancel in the messagebox
btnRetryCancel()        - Display Retry and Cancel in the messagebox
btnYesNo()              - Display Yes & No in the messagebox
btnYesNoCancel()        - Display Yes, No, & Cancel in the messagebox

Results:
resultCancel()          - The cancel button was pressed
resultAbort()           - The abort button was pressed
resultRetry()           - The retry button was pressed
resultIgnore()          - The ignore button was pressed
resultYes()             - The Yes button was pressed
resultNo()              - The No button was pressed
resultClose()           - The messagebox was closed
resultHelp()            - The help button was pressed

The Function:
result = displayMessage(message$, title$, icon, btn)


NOTE: Some commands were not tested, use at your own risk.
You may not redistribute this.
